home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2005 October / PCWOCT05.iso / Software / FromTheMag / XAMPP 1.4.14 / xampp-win32-1.4.14-installer.exe / xampp / mysql / scripts / mysql_config < prev    next >
Text File  |  2005-04-01  |  4KB  |  156 lines

  1. #!/bin/sh
  2. # Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
  3. # This program is free software; you can redistribute it and/or modify
  4. # it under the terms of the GNU General Public License as published by
  5. # the Free Software Foundation; either version 2 of the License, or
  6. # (at your option) any later version.
  7. # This program is distributed in the hope that it will be useful,
  8. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  10. # GNU General Public License for more details.
  11. # You should have received a copy of the GNU General Public License
  12. # along with this program; if not, write to the Free Software
  13. # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  14.  
  15. # This script reports various configuration settings that may be needed
  16. # when using the MySQL client library.
  17.  
  18. which ()
  19. {
  20.   IFS="${IFS=   }"; save_ifs="$IFS"; IFS=':'
  21.   for file
  22.   do
  23.     for dir in $PATH
  24.     do
  25.       if test -f $dir/$file
  26.       then
  27.         echo "$dir/$file"
  28.         continue 2
  29.       fi
  30.     done
  31.     echo "which: no $file in ($PATH)"
  32.     exit 1
  33.   done
  34.   IFS="$save_ifs"
  35. }
  36.  
  37. #
  38. # If we can find the given directory relatively to where mysql_config is
  39. # we should use this instead of the incompiled one.
  40. # This is to ensure that this script also works with the binary MySQL
  41. # version
  42.  
  43. fix_path ()
  44. {
  45.   var=$1
  46.   shift
  47.   for filename
  48.   do
  49.     path=$basedir/$filename
  50.     if [ -d "$path" ] ;
  51.     then
  52.       eval "$var"=$path
  53.       return
  54.     fi
  55.   done
  56. }
  57.  
  58. get_full_path ()
  59. {
  60.   case $1 in
  61.     /*)    echo "$1";;
  62.     ./*) tmp=`pwd`/$1; echo $tmp | sed -e 's;/\./;/;' ;;
  63.      *) which $1 ;;
  64.    esac
  65. }
  66.  
  67. me=`get_full_path $0`
  68.  
  69. basedir=`echo $me | sed -e 's;/bin/mysql_config;;'`
  70.  
  71. ldata='/usr/local/var'
  72. execdir='/usr/local/libexec'
  73. bindir='/usr/local/bin'
  74. pkglibdir='/usr/local/lib/mysql'
  75. fix_path pkglibdir lib/mysql lib
  76. pkgincludedir='/usr/local/include/mysql'
  77. fix_path pkgincludedir include/mysql include
  78. version='4.1.11'
  79. socket='/tmp/mysql.sock'
  80. port='3306'
  81. ldflags=''
  82.  
  83. # Create options
  84.  
  85. libs="$ldflags -L$pkglibdir -lmysqlclient -lz -lcrypt -lnsl -lm "
  86. libs="$libs  "
  87. libs=`echo "$libs" | sed -e 's;  \+; ;g' | sed -e 's;^ *;;' | sed -e 's; *\$;;'`
  88.  
  89. libs_r="$ldflags -L$pkglibdir -lmysqlclient_r -lz -lpthread -lcrypt -lnsl -lm  -lpthread  "
  90. libs_r=`echo "$libs_r" | sed -e 's;  \+; ;g' | sed -e 's;^ *;;' | sed -e 's; *\$;;'`
  91. cflags="-I$pkgincludedir  " #note: end space!
  92. include="-I$pkgincludedir"
  93. embedded_libs="$ldflags -L$pkglibdir -lmysqld -lpthread -lcrypt -lnsl -lm  -lpthread   -lrt $client_libs"
  94. embedded_libs=`echo "$embedded_libs" | sed -e 's;  \+; ;g' | sed -e 's;^ *;;' | sed -e 's; *\$;;'`
  95.  
  96. # Remove some options that a client doesn't have to care about
  97. for remove in DDBUG_OFF DSAFEMALLOC USAFEMALLOC DSAFE_MUTEX \
  98.               DPEDANTIC_SAFEMALLOC DUNIV_MUST_NOT_INLINE DFORCE_INIT_OF_VARS \
  99.               DEXTRA_DEBUG DHAVE_purify 'O[0-9]' 'W[-A-Za-z]*'
  100. do
  101.   # The first option we might strip will always have a space before it because
  102.   # we set -I$pkgincludedir as the first option
  103.   cflags=`echo "$cflags"|sed -e "s/ -$remove  */ /g"` 
  104. done
  105. cflags=`echo "$cflags"|sed -e 's/ *\$//'` 
  106.  
  107. usage () {
  108.         cat <<EOF
  109. Usage: $0 [OPTIONS]
  110. Options:
  111.         --cflags         [$cflags]
  112.     --include     [$include]
  113.         --libs           [$libs]
  114.         --libs_r         [$libs_r]
  115.         --socket         [$socket]
  116.         --port           [$port]
  117.         --version        [$version]
  118.     --libmysqld-libs [$embedded_libs]
  119. EOF
  120.         exit 1
  121. }
  122.  
  123. if test $# -le 0; then usage; fi
  124.  
  125. while test $# -gt 0; do
  126.         case $1 in
  127.         --cflags)  echo "$cflags" ;;
  128.     --include) echo "$include" ;;
  129.         --libs)    echo "$libs" ;;
  130.         --libs_r)  echo "$libs_r" ;;
  131.         --socket)  echo "$socket" ;;
  132.         --port)    echo "$port" ;;
  133.         --version) echo "$version" ;;
  134.     --embedded-libs | --embedded | --libmysqld-libs) echo "$embedded_libs" ;;
  135.         *)         usage ;;
  136.         esac
  137.  
  138.         shift
  139. done
  140.  
  141. #echo "ldata: '"$ldata"'"
  142. #echo "execdir: '"$execdir"'"
  143. #echo "bindir: '"$bindir"'"
  144. #echo "pkglibdir: '"$pkglibdir"'"
  145. #echo "pkgincludedir: '"$pkgincludedir"'"
  146. #echo "version: '"$version"'"
  147. #echo "socket: '"$socket"'"
  148. #echo "port: '"$port"'"
  149. #echo "ldflags: '"$ldflags"'"
  150. #echo "client_libs: '"$client_libs"'"
  151.  
  152. exit 0
  153.